-- card: 13900 from stack: in -- bmap block id: 0 -- flags: 0000 -- background id: 4755 -- name: -- part contents for background part 4 ----- text ----- printf("My age is %d\n",age); printf("My weight is %d\n",weight); The Person::print() method outputs the values of the instance variables. As mentioned earlier, printf() accepts a character string as its first argument, followed by an appropriate list of arguments. The characters '%d' contained in the string specify that an integer value is to be printed in this location, in this case the value represented by the variable age or the variable weight. -- part contents for background part 7 ----- text ----- 32